home *** CD-ROM | disk | FTP | other *** search
-
- from PSPApp import *
-
- def ScriptProperties():
- return {
- 'Author': u'Corel, Inc.',
- 'Copyright': u'Copyright (c) 2005 Corel, Inc. All rights reserved.',
- 'Description': 'Factory default preset for High Pass effect',
- 'Host': 'Paint Shop Pro 10',
- 'Host Version': '10.00',
- }
-
- def Preset_HighPass():
- return {
- 'Desaturate': False,
- 'Radius': 10,
- 'GeneralSettings': {
- 'ExecutionMode': App.Constants.ExecutionMode.Default,
- 'PreviewVisible': True,
- 'AutoProof': False,
- 'AutoActionMode': App.Constants.AutoActionMode.Match
- }
- }
-
- def Do(Environment):
- App.Do( Environment, 'HighPass', Preset_HighPass())
-